off-by-one error - определение. Что такое off-by-one error
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое off-by-one error - определение

TYPE OF NUMERICAL OR COUNTING ERROR
Fencepost error; Obi-wan error; Obi-Wan error; Off by one errors; Off by one error; Off-by-one-error; Off by one (bug); Buffer fence post error; OB1; Fencepost problem; Fence post error; Off-by-one; Off by one; Off by 1; Off-by-one errors; Banana error; Fence-post error; OBOB; Picket-fence problem
Найдено результатов: 19791
off-by-one error         
<programming> An exceedingly common error induced in many ways, such as by starting at zero when you should have started at one or vice-versa, or by writing "< N" instead of "<= N" or vice-versa. Often confounded with fencepost error, which is properly a particular subtype of it. [Jargon File] (1998-09-21)
Off-by-one error         
An off-by-one error or off-by-one bug (known by acronyms OBOE, OBO, OB1 and OBOB) is a logic error involving the discrete equivalent of a boundary condition. It often occurs in computer programming when an iterative loop iterates one time too many or too few.
fencepost error         
1. (Rarely "lamp-post error") A problem with the discrete equivalent of a boundary condition, often exhibited in programs by iterative loops. From the following problem: "If you build a fence 100 feet long with posts 10 feet apart, how many posts do you need?" (Either 9 or 11 is a better answer than the obvious 10). For example, suppose you have a long list or array of items, and want to process items m through n; how many items are there? The obvious answer is n - m, but that is off by one; the right answer is n - m + 1. The "obvious" formula exhibits a fencepost error. See also zeroth and note that not all off-by-one errors are fencepost errors. The game of Musical Chairs involves a catastrophic off-by-one error where N people try to sit in N - 1 chairs, but it's not a fencepost error. Fencepost errors come from counting things rather than the spaces between them, or vice versa, or by neglecting to consider whether one should count one or both ends of a row. 2. (Rare) An error induced by unexpected regularities in input values, which can (for instance) completely thwart a theoretically efficient binary tree or hash coding implementation. The error here involves the difference between expected and worst case behaviours of an algorithm. [Jargon File] (1994-12-01)
obi-wan error         
/oh'bee-won" er"*r/ [RPI, from "off-by-one" and the Obi-Wan Kenobi character in "Star Wars"] A loop of some sort in which the index is off by 1. Common when the index should have started from 0 but instead started from 1. A kind of off-by-one error. See also zeroth.
round off         
DIFFERENCE BETWEEN THE RESULT PRODUCED BY AN ALGORITHM WHEN USING EXACT ARITHMETIC AND WHEN USING FINITE-PRECISION, ROUNDED ARITHMETIC
Rounding error; Roundoff error; Round-off; Round off; Rounding errors; Round-off errors
If you round off an activity with something, you end the activity by doing something that provides a clear or satisfactory conclusion to it.
The Italian way is to round off a meal with an ice-cream...
This rounded the afternoon off perfectly...
He rounds off by proposing a toast to the attendants.
PHRASAL VERB: V P n (not pron), V n P, V P by -ing
Round-off error         
DIFFERENCE BETWEEN THE RESULT PRODUCED BY AN ALGORITHM WHEN USING EXACT ARITHMETIC AND WHEN USING FINITE-PRECISION, ROUNDED ARITHMETIC
Rounding error; Roundoff error; Round-off; Round off; Rounding errors; Round-off errors
A roundoff error, also called rounding error, is the difference between the result produced by a given algorithm using exact arithmetic and the result produced by the same algorithm using finite-precision, rounded arithmetic. Rounding errors are due to inexactness in the representation of real numbers and the arithmetic operations done with them.
random error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
¦ noun Statistics an error in measurement caused by factors which vary from one measurement to another.
Observational error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
Observational error (or measurement error) is the difference between a measured value of a quantity and its true value.Dodge, Y.
systematic error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
¦ noun Statistics an error whose effect is not reduced when observations are averaged.
One Off (miniseries)         
ORIGINAL VIDEO ANIMATION
One-off (OVA); One Off (OVA)
is an animated series directed by Junichi Sato and produced by TYO Animations in collaboration with Honda. The four-episode series was aired on AT-X on August 5 and October 7, 2012.

Википедия

Off-by-one error

An off-by-one error or off-by-one bug (known by acronyms OBOE, OBO, OB1 and OBOB) is a logic error involving the discrete equivalent of a boundary condition. It often occurs in computer programming when an iterative loop iterates one time too many or too few. This problem could arise when a programmer makes mistakes such as using "is less than or equal to" where "is less than" should have been used in a comparison, or fails to take into account that a sequence starts at zero rather than one (as with array indices in many languages). This can also occur in a mathematical context.